home *** CD-ROM | disk | FTP | other *** search
/ AT&T WorldNet Service / WorldNet Service Installation Disk - Cybercathlon Games and Interactive Tour of Olympic Museum (1996).ISO / olympics / graphics / fkrcalf.xof < prev    next >
Text File  |  1996-05-27  |  13KB  |  544 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  105;
  136.  -0.032117;-0.082632;0.127400;,
  137.  0.067640;0.041752;0.051051;,
  138.  0.001147;0.001481;-0.081676;,
  139.  0.067640;0.041752;0.051051;,
  140.  0.050635;-0.036640;0.031868;,
  141.  0.001147;0.001481;-0.081676;,
  142.  0.050635;-0.036640;0.031868;,
  143.  -0.005844;-0.032658;-0.087370;,
  144.  0.001147;0.001481;-0.081676;,
  145.  -0.005844;-0.032658;-0.087370;,
  146.  -0.040044;0.008828;0.006506;,
  147.  0.001147;0.001481;-0.081676;,
  148.  -0.040044;0.008828;0.006506;,
  149.  -0.050057;0.014203;0.050263;,
  150.  0.001147;0.001481;-0.081676;,
  151.  -0.050057;0.014203;0.050263;,
  152.  -0.032117;-0.082632;0.127400;,
  153.  0.001147;0.001481;-0.081676;,
  154.  0.041336;-1.144237;0.128320;,
  155.  0.053764;-1.369065;-0.029760;,
  156.  0.067330;-0.899643;0.106581;,
  157.  0.067330;-0.899643;0.106581;,
  158.  0.053764;-1.369065;-0.029760;,
  159.  0.066575;-0.955467;0.052189;,
  160.  0.066575;-0.955467;0.052189;,
  161.  0.053764;-1.369065;-0.029760;,
  162.  0.035745;-1.055896;0.016994;,
  163.  0.035745;-1.055896;0.016994;,
  164.  0.053764;-1.369065;-0.029760;,
  165.  -0.005615;-1.082241;0.054225;,
  166.  -0.005615;-1.082241;0.054225;,
  167.  0.053764;-1.369065;-0.029760;,
  168.  -0.003364;-1.116070;0.110981;,
  169.  -0.040253;-0.397844;-0.042009;,
  170.  -0.005844;-0.032658;-0.087370;,
  171.  0.050635;-0.036640;0.031868;,
  172.  0.074801;-0.475254;0.044447;,
  173.  -0.040253;-0.397844;-0.042009;,
  174.  0.050635;-0.036640;0.031868;,
  175.  0.074801;-0.475254;0.044447;,
  176.  0.050635;-0.036640;0.031868;,
  177.  0.067640;0.041752;0.051051;,
  178.  0.143791;-0.458080;0.199970;,
  179.  0.074801;-0.475254;0.044447;,
  180.  0.067640;0.041752;0.051051;,
  181.  -0.014917;-0.402961;0.267180;,
  182.  0.067640;0.041752;0.051051;,
  183.  -0.032117;-0.082632;0.127400;,
  184.  -0.014917;-0.402961;0.267180;,
  185.  0.143791;-0.458080;0.199970;,
  186.  0.067640;0.041752;0.051051;,
  187.  -0.156247;-0.347842;0.199970;,
  188.  -0.032117;-0.082632;0.127400;,
  189.  -0.050057;0.014203;0.050263;,
  190.  -0.156247;-0.347842;0.199970;,
  191.  -0.014917;-0.402961;0.267180;,
  192.  -0.032117;-0.082632;0.127400;,
  193.  -0.127321;-0.374213;0.044446;,
  194.  -0.050057;0.014203;0.050263;,
  195.  -0.040044;0.008828;0.006506;,
  196.  -0.127321;-0.374213;0.044446;,
  197.  -0.156247;-0.347842;0.199970;,
  198.  -0.050057;0.014203;0.050263;,
  199.  -0.005844;-0.032658;-0.087370;,
  200.  -0.127321;-0.374213;0.044446;,
  201.  -0.040044;0.008828;0.006506;,
  202.  -0.005844;-0.032658;-0.087370;,
  203.  -0.040253;-0.397844;-0.042009;,
  204.  -0.127321;-0.374213;0.044446;,
  205.  0.035745;-1.055896;0.016994;,
  206.  -0.040253;-0.397844;-0.042009;,
  207.  0.074801;-0.475254;0.044447;,
  208.  0.066575;-0.955467;0.052189;,
  209.  0.035745;-1.055896;0.016994;,
  210.  0.074801;-0.475254;0.044447;,
  211.  0.066575;-0.955467;0.052189;,
  212.  0.074801;-0.475254;0.044447;,
  213.  0.143791;-0.458080;0.199970;,
  214.  0.067330;-0.899643;0.106581;,
  215.  0.066575;-0.955467;0.052189;,
  216.  0.143791;-0.458080;0.199970;,
  217.  0.041336;-1.144237;0.128320;,
  218.  0.143791;-0.458080;0.199970;,
  219.  -0.014917;-0.402961;0.267180;,
  220.  0.041336;-1.144237;0.128320;,
  221.  0.067330;-0.899643;0.106581;,
  222.  0.143791;-0.458080;0.199970;,
  223.  -0.003364;-1.116070;0.110981;,
  224.  -0.014917;-0.402961;0.267180;,
  225.  -0.156247;-0.347842;0.199970;,
  226.  -0.003364;-1.116070;0.110981;,
  227.  0.041336;-1.144237;0.128320;,
  228.  -0.014917;-0.402961;0.267180;,
  229.  -0.005615;-1.082241;0.054225;,
  230.  -0.156247;-0.347842;0.199970;,
  231.  -0.127321;-0.374213;0.044446;,
  232.  -0.005615;-1.082241;0.054225;,
  233.  -0.003364;-1.116070;0.110981;,
  234.  -0.156247;-0.347842;0.199970;,
  235.  -0.040253;-0.397844;-0.042009;,
  236.  -0.005615;-1.082241;0.054225;,
  237.  -0.127321;-0.374213;0.044446;,
  238.  0.035745;-1.055896;0.016994;,
  239.  -0.005615;-1.082241;0.054225;,
  240.  -0.040253;-0.397844;-0.042009;;
  241.  
  242.  35;
  243.  3;0,1,2;,
  244.  3;3,4,5;,
  245.  3;6,7,8;,
  246.  3;9,10,11;,
  247.  3;12,13,14;,
  248.  3;15,16,17;,
  249.  3;18,19,20;,
  250.  3;21,22,23;,
  251.  3;24,25,26;,
  252.  3;27,28,29;,
  253.  3;30,31,32;,
  254.  3;33,34,35;,
  255.  3;36,37,38;,
  256.  3;39,40,41;,
  257.  3;42,43,44;,
  258.  3;45,46,47;,
  259.  3;48,49,50;,
  260.  3;51,52,53;,
  261.  3;54,55,56;,
  262.  3;57,58,59;,
  263.  3;60,61,62;,
  264.  3;63,64,65;,
  265.  3;66,67,68;,
  266.  3;69,70,71;,
  267.  3;72,73,74;,
  268.  3;75,76,77;,
  269.  3;78,79,80;,
  270.  3;81,82,83;,
  271.  3;84,85,86;,
  272.  3;87,88,89;,
  273.  3;90,91,92;,
  274.  3;93,94,95;,
  275.  3;96,97,98;,
  276.  3;99,100,101;,
  277.  3;102,103,104;;
  278.  
  279.  MeshMaterialList {
  280.   1;
  281.   1;
  282.   0;;
  283.   Material {
  284.    0.760784;0.458824;0.317647;1.000000;;
  285.    0.000000;
  286.    0.000000;0.000000;0.000000;;
  287.    0.000000;0.000000;0.000000;;
  288.   }
  289.  }
  290.  MeshNormals {
  291.   105;
  292.   -0.133454;0.610983;0.780314;,
  293.   0.870878;0.475817;0.123165;,
  294.   0.367435;0.842156;-0.394671;,
  295.   0.870878;0.475817;0.123165;,
  296.   0.819727;-0.063846;-0.569185;,
  297.   0.367435;0.842156;-0.394671;,
  298.   0.819727;-0.063846;-0.569185;,
  299.   -0.275888;0.057842;-0.959448;,
  300.   0.367435;0.842156;-0.394671;,
  301.   -0.275888;0.057842;-0.959448;,
  302.   -0.821444;0.450736;-0.349382;,
  303.   0.367435;0.842156;-0.394671;,
  304.   -0.821444;0.450736;-0.349382;,
  305.   -0.617319;0.775003;0.135232;,
  306.   0.367435;0.842156;-0.394671;,
  307.   -0.617319;0.775003;0.135232;,
  308.   -0.133454;0.610983;0.780314;,
  309.   0.367435;0.842156;-0.394671;,
  310.   0.429047;-0.356884;0.829791;,
  311.   0.216475;-0.581665;-0.784095;,
  312.   0.991998;-0.114856;0.052429;,
  313.   0.991998;-0.114856;0.052429;,
  314.   0.216475;-0.581665;-0.784095;,
  315.   0.927109;-0.029745;-0.373610;,
  316.   0.927109;-0.029745;-0.373610;,
  317.   0.216475;-0.581665;-0.784095;,
  318.   0.146030;0.015132;-0.989164;,
  319.   0.146030;0.015132;-0.989164;,
  320.   0.216475;-0.581665;-0.784095;,
  321.   -0.886344;-0.133136;-0.443474;,
  322.   -0.886344;-0.133136;-0.443474;,
  323.   0.216475;-0.581665;-0.784095;,
  324.   -0.804168;-0.291009;0.518293;,
  325.   0.014986;-0.100432;-0.994831;,
  326.   -0.275888;0.057842;-0.959448;,
  327.   0.819727;-0.063846;-0.569185;,
  328.   0.771525;-0.000155;-0.636199;,
  329.   0.014986;-0.100432;-0.994831;,
  330.   0.819727;-0.063846;-0.569185;,
  331.   0.771525;-0.000155;-0.636199;,
  332.   0.819727;-0.063846;-0.569185;,
  333.   0.870878;0.475817;0.123165;,
  334.   0.979141;-0.035533;0.200050;,
  335.   0.771525;-0.000155;-0.636199;,
  336.   0.870878;0.475817;0.123165;,
  337.   -0.043422;0.103985;0.993631;,
  338.   0.870878;0.475817;0.123165;,
  339.   -0.133454;0.610983;0.780314;,
  340.   -0.043422;0.103985;0.993631;,
  341.   0.979141;-0.035533;0.200050;,
  342.   0.870878;0.475817;0.123165;,
  343.   -0.899406;0.099180;0.425714;,
  344.   -0.133454;0.610983;0.780314;,
  345.   -0.617319;0.775003;0.135232;,
  346.   -0.899406;0.099180;0.425714;,
  347.   -0.043422;0.103985;0.993631;,
  348.   -0.133454;0.610983;0.780314;,
  349.   -0.907610;0.039893;-0.417915;,
  350.   -0.617319;0.775003;0.135232;,
  351.   -0.821444;0.450736;-0.349382;,
  352.   -0.907610;0.039893;-0.417915;,
  353.   -0.899406;0.099180;0.425714;,
  354.   -0.617319;0.775003;0.135232;,
  355.   -0.275888;0.057842;-0.959448;,
  356.   -0.907610;0.039893;-0.417915;,
  357.   -0.821444;0.450736;-0.349382;,
  358.   -0.275888;0.057842;-0.959448;,
  359.   0.014986;-0.100432;-0.994831;,
  360.   -0.907610;0.039893;-0.417915;,
  361.   0.146030;0.015132;-0.989164;,
  362.   0.014986;-0.100432;-0.994831;,
  363.   0.771525;-0.000155;-0.636199;,
  364.   0.927109;-0.029745;-0.373610;,
  365.   0.146030;0.015132;-0.989164;,
  366.   0.771525;-0.000155;-0.636199;,
  367.   0.927109;-0.029745;-0.373610;,
  368.   0.771525;-0.000155;-0.636199;,
  369.   0.979141;-0.035533;0.200050;,
  370.   0.991998;-0.114856;0.052429;,
  371.   0.927109;-0.029745;-0.373610;,
  372.   0.979141;-0.035533;0.200050;,
  373.   0.429047;-0.356884;0.829791;,
  374.   0.979141;-0.035533;0.200050;,
  375.   -0.043422;0.103985;0.993631;,
  376.   0.429047;-0.356884;0.829791;,
  377.   0.991998;-0.114856;0.052429;,
  378.   0.979141;-0.035533;0.200050;,
  379.   -0.804168;-0.291009;0.518293;,
  380.   -0.043422;0.103985;0.993631;,
  381.   -0.899406;0.099180;0.425714;,
  382.   -0.804168;-0.291009;0.518293;,
  383.   0.429047;-0.356884;0.829791;,
  384.   -0.043422;0.103985;0.993631;,
  385.   -0.886344;-0.133136;-0.443474;,
  386.   -0.899406;0.099180;0.425714;,
  387.   -0.907610;0.039893;-0.417915;,
  388.   -0.886344;-0.133136;-0.443474;,
  389.   -0.804168;-0.291009;0.518293;,
  390.   -0.899406;0.099180;0.425714;,
  391.   0.014986;-0.100432;-0.994831;,
  392.   -0.886344;-0.133136;-0.443474;,
  393.   -0.907610;0.039893;-0.417915;,
  394.   0.146030;0.015132;-0.989164;,
  395.   -0.886344;-0.133136;-0.443474;,
  396.   0.014986;-0.100432;-0.994831;;
  397.  
  398.   35;
  399.   3;0,1,2;,
  400.   3;3,4,5;,
  401.   3;6,7,8;,
  402.   3;9,10,11;,
  403.   3;12,13,14;,
  404.   3;15,16,17;,
  405.   3;18,19,20;,
  406.   3;21,22,23;,
  407.   3;24,25,26;,
  408.   3;27,28,29;,
  409.   3;30,31,32;,
  410.   3;33,34,35;,
  411.   3;36,37,38;,
  412.   3;39,40,41;,
  413.   3;42,43,44;,
  414.   3;45,46,47;,
  415.   3;48,49,50;,
  416.   3;51,52,53;,
  417.   3;54,55,56;,
  418.   3;57,58,59;,
  419.   3;60,61,62;,
  420.   3;63,64,65;,
  421.   3;66,67,68;,
  422.   3;69,70,71;,
  423.   3;72,73,74;,
  424.   3;75,76,77;,
  425.   3;78,79,80;,
  426.   3;81,82,83;,
  427.   3;84,85,86;,
  428.   3;87,88,89;,
  429.   3;90,91,92;,
  430.   3;93,94,95;,
  431.   3;96,97,98;,
  432.   3;99,100,101;,
  433.   3;102,103,104;;
  434.  }
  435.  MeshTextureCoords {
  436.   105;
  437.   0.000000;0.000000;,
  438.   0.000000;0.000000;,
  439.   0.000000;0.000000;,
  440.   0.000000;0.000000;,
  441.   0.000000;0.000000;,
  442.   0.000000;0.000000;,
  443.   0.000000;0.000000;,
  444.   0.000000;0.000000;,
  445.   0.000000;0.000000;,
  446.   0.000000;0.000000;,
  447.   0.000000;0.000000;,
  448.   0.000000;0.000000;,
  449.   0.000000;0.000000;,
  450.   0.000000;0.000000;,
  451.   0.000000;0.000000;,
  452.   0.000000;0.000000;,
  453.   0.000000;0.000000;,
  454.   0.000000;0.000000;,
  455.   0.000000;0.000000;,
  456.   0.000000;0.000000;,
  457.   0.000000;0.000000;,
  458.   0.000000;0.000000;,
  459.   0.000000;0.000000;,
  460.   0.000000;0.000000;,
  461.   0.000000;0.000000;,
  462.   0.000000;0.000000;,
  463.   0.000000;0.000000;,
  464.   0.000000;0.000000;,
  465.   0.000000;0.000000;,
  466.   0.000000;0.000000;,
  467.   0.000000;0.000000;,
  468.   0.000000;0.000000;,
  469.   0.000000;0.000000;,
  470.   0.000000;0.000000;,
  471.   0.000000;0.000000;,
  472.   0.000000;0.000000;,
  473.   0.000000;0.000000;,
  474.   0.000000;0.000000;,
  475.   0.000000;0.000000;,
  476.   0.000000;0.000000;,
  477.   0.000000;0.000000;,
  478.   0.000000;0.000000;,
  479.   0.000000;0.000000;,
  480.   0.000000;0.000000;,
  481.   0.000000;0.000000;,
  482.   0.000000;0.000000;,
  483.   0.000000;0.000000;,
  484.   0.000000;0.000000;,
  485.   0.000000;0.000000;,
  486.   0.000000;0.000000;,
  487.   0.000000;0.000000;,
  488.   0.000000;0.000000;,
  489.   0.000000;0.000000;,
  490.   0.000000;0.000000;,
  491.   0.000000;0.000000;,
  492.   0.000000;0.000000;,
  493.   0.000000;0.000000;,
  494.   0.000000;0.000000;,
  495.   0.000000;0.000000;,
  496.   0.000000;0.000000;,
  497.   0.000000;0.000000;,
  498.   0.000000;0.000000;,
  499.   0.000000;0.000000;,
  500.   0.000000;0.000000;,
  501.   0.000000;0.000000;,
  502.   0.000000;0.000000;,
  503.   0.000000;0.000000;,
  504.   0.000000;0.000000;,
  505.   0.000000;0.000000;,
  506.   0.000000;0.000000;,
  507.   0.000000;0.000000;,
  508.   0.000000;0.000000;,
  509.   0.000000;0.000000;,
  510.   0.000000;0.000000;,
  511.   0.000000;0.000000;,
  512.   0.000000;0.000000;,
  513.   0.000000;0.000000;,
  514.   0.000000;0.000000;,
  515.   0.000000;0.000000;,
  516.   0.000000;0.000000;,
  517.   0.000000;0.000000;,
  518.   0.000000;0.000000;,
  519.   0.000000;0.000000;,
  520.   0.000000;0.000000;,
  521.   0.000000;0.000000;,
  522.   0.000000;0.000000;,
  523.   0.000000;0.000000;,
  524.   0.000000;0.000000;,
  525.   0.000000;0.000000;,
  526.   0.000000;0.000000;,
  527.   0.000000;0.000000;,
  528.   0.000000;0.000000;,
  529.   0.000000;0.000000;,
  530.   0.000000;0.000000;,
  531.   0.000000;0.000000;,
  532.   0.000000;0.000000;,
  533.   0.000000;0.000000;,
  534.   0.000000;0.000000;,
  535.   0.000000;0.000000;,
  536.   0.000000;0.000000;,
  537.   0.000000;0.000000;,
  538.   0.000000;0.000000;,
  539.   0.000000;0.000000;,
  540.   0.000000;0.000000;,
  541.   0.000000;0.000000;;
  542.  }
  543. }
  544.